Pack the struct better, should save four bytes per GtkIconView
authorMart Raudsepp <leio@gentoo.org>
Wed, 16 Sep 2009 05:53:22 +0000 (08:53 +0300)
committerMart Raudsepp <leio@gentoo.org>
Tue, 22 Sep 2009 08:25:28 +0000 (11:25 +0300)
gtk/gtkiconview.c

index c517b0fb90eac8b5a3e77c425df4bd85b0bba121..b3dcb2fe9ce3aed5263c468b35bb97f03ecef39e 100644 (file)
@@ -160,8 +160,6 @@ struct _GtkIconViewPrivate
 
   gint tooltip_column;
 
-  guint draw_focus : 1;
-
   /* Drag-and-drop. */
   GdkModifierType start_button_mask;
   gint pressed_button;
@@ -186,7 +184,9 @@ struct _GtkIconViewPrivate
   guint empty_view_drop :1;
 
   guint ctrl_pressed : 1;
-  guint shift_pressed : 1;  
+  guint shift_pressed : 1;
+
+  guint draw_focus : 1;
 };
 
 /* Signals */